From 2e52310d4b0c1871ffe673c6ff42e236ef88c7e6 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 6 Sep 2015 15:02:34 -0400 Subject: [PATCH] gdk window: Convert to g_object_notify_by_pspec This avoids pspec lookup overhead in g_object_notify. --- gdk/gdkwindow.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index ab37cafcff..44c30d1854 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -152,7 +152,8 @@ enum { enum { PROP_0, - PROP_CURSOR + PROP_CURSOR, + LAST_PROP }; /* Global info */ @@ -195,7 +196,7 @@ static void draw_ugly_color (GdkWindow *window, static guint signals[LAST_SIGNAL] = { 0 }; - +static GParamSpec *properties[LAST_PROP] = { NULL, }; G_DEFINE_ABSTRACT_TYPE (GdkWindow, gdk_window, G_TYPE_OBJECT) @@ -309,13 +310,13 @@ gdk_window_class_init (GdkWindowClass *klass) * * Since: 2.18 */ - g_object_class_install_property (object_class, - PROP_CURSOR, - g_param_spec_object ("cursor", - P_("Cursor"), - P_("Cursor"), - GDK_TYPE_CURSOR, - G_PARAM_READWRITE)); + properties[PROP_CURSOR] = + g_param_spec_object ("cursor", + P_("Cursor"), + P_("Cursor"), + GDK_TYPE_CURSOR, + G_PARAM_READWRITE); + g_object_class_install_properties (object_class, LAST_PROP, properties); /** * GdkWindow::pick-embedded-child: @@ -6165,7 +6166,7 @@ gdk_window_set_cursor (GdkWindow *window, } g_list_free (devices); - g_object_notify (G_OBJECT (window), "cursor"); + g_object_notify_by_pspec (G_OBJECT (window), properties[PROP_CURSOR]); } } -- 2.30.2